home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRAPHICS / IMGLIB95 / BLOB.DP_ / BLOB.DP
Text File  |  1996-03-31  |  447b  |  19 lines

  1. program Blob;
  2.  
  3. uses
  4.   Forms,
  5.   Ublob in 'UBLOB.PAS' {BlobForm1},
  6.   U_p_size in 'U_P_SIZE.PAS' {Printersize},
  7.   Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  8.   Uabout in 'UABOUT.PAS' {AboutBox};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TBlobForm1, BlobForm1);
  14.   Application.CreateForm(TPrintersize, Printersize);
  15.   Application.CreateForm(TFullSlide, FullSlide);
  16.   Application.CreateForm(TAboutBox, AboutBox);
  17.   Application.Run;
  18. end.
  19.